Game xếp hình Tetris C#

1 using System;
2 using
System.Drawing;
3 using
System.Collections;
4 using
System.ComponentModel;
5 using
System.Windows.Forms;
6
7 namespace
Tetris
8 {

9     ///
<summary>
10     ///
Descripción breve de AcerdaDe.
11     ///
</summary>
12     
public class AcercaDe : System.Windows.Forms.Form
13     {
14         
private System.Windows.Forms.Label label1;
15         
private System.Windows.Forms.Label label2;
16         
private System.Windows.Forms.Label label3;
17         
private System.Windows.Forms.Label label4;
18         ///
<summary>
19         ///
Variable del diseñador requerida.
20         ///
</summary>
21         
private System.ComponentModel.Container components = null;
22
23         
public AcercaDe()
24         {
25             
//
26             
// Necesario para admitir el Diseñador de Windows Forms
27             
//
28             InitializeComponent();
29
30             
//
31             
// TODO: agregar código de constructor después de llamar a InitializeComponent
32             
//
33         }

34
35         ///
<summary>
36         ///
Limpiar los recursos que se estén utilizando.
37         ///
</summary>
38         
protected override void Dispose( bool disposing )
39         {
40             
if( disposing )
41             {
42                 
if(components != null)
43                 {
44                     components.Dispose();
45                 }
46             }
47             
base.Dispose( disposing );
48         }
49
50         
#region Código generado por el Diseñador de Windows Forms
51         ///
<summary>
52         ///
Método necesario para admitir el Diseñador. No se puede modificar
53         ///
el contenido del método con el editor de código.
54         ///
</summary>
55         
private void InitializeComponent()
56         {
57             
this.label1 = new System.Windows.Forms.Label();
58             
this.label2 = new System.Windows.Forms.Label();
59             
this.label3 = new System.Windows.Forms.Label();
60             
this.label4 = new System.Windows.Forms.Label();
61             
this.SuspendLayout();
62             
//
63             
// label1
64             
//
65             
this.label1.Location = new System.Drawing.Point(24, 40);
66             
this.label1.Name = "label1";
67             
this.label1.Size = new System.Drawing.Size(136, 16);
68             
this.label1.TabIndex = 0;
69             
this.label1.Text = "Evaristo Cuesta Guzmán";
70             
//
71             
// label2
72             
//
73             
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
74             
this.label2.Location = new System.Drawing.Point(24, 16);
75             
this.label2.Name = "label2";
76             
this.label2.TabIndex = 1;
77             
this.label2.Text = "eTetris";
78             
//
79             
// label3
80             
//
81             
this.label3.Location = new System.Drawing.Point(24, 56);
82             
this.label3.Name = "label3";
83             
this.label3.Size = new System.Drawing.Size(136, 17);
84             
this.label3.TabIndex = 2;
85             
this.label3.Text = "evaristocg@gmail.com";
86             
//
87             
// label4
88             
//
89             
this.label4.Location = new System.Drawing.Point(24, 72);
90             
this.label4.Name = "label4";
91             
this.label4.Size = new System.Drawing.Size(136, 17);
92             
this.label4.TabIndex = 3;
93             
this.label4.Text = "www.algoritmia.tk";
94             
//
95             
// AcerdaDe
96             
//
97             
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
98             
this.ClientSize = new System.Drawing.Size(216, 94);
99             
this.Controls.Add(this.label4);
100             
this.Controls.Add(this.label3);
101             
this.Controls.Add(this.label2);
102             
this.Controls.Add(this.label1);
103             
this.Name = "AcerdaDe";
104             
this.Text = "Acerca de eTetris";
105             
this.Load += new System.EventHandler(this.AcerdaDe_Load);
106             
this.ResumeLayout(false);
107
108         }
109         
#endregion
110
111         
private void AcerdaDe_Load(object sender, System.EventArgs e)
112         {
113         
114         }
115     }
116 }



Game xếp hình Tetris C# 5.866 lượt xem

Gõ tìm kiếm nhanh...